Type alias BigMapKey

BigMapKey: {
    key: {
        [key: string]: string | object[];
    };
    type: {
        args?: object[];
        prim: string;
    };
}

Type declaration

  • key: {
        [key: string]: string | object[];
    }
    • [key: string]: string | object[]
  • type: {
        args?: object[];
        prim: string;
    }
    • Optional args?: object[]
    • prim: string

Generated using TypeDoc