UNPKG

@bbachain/spl-token-metadata

Version:
18 lines 505 B
import * as beet from '@bbachain/beet'; import { Creator } from './Creator'; import { Collection } from './Collection'; import { Uses } from './Uses'; export type Data = { name: string; symbol: string; uri: string; sellerFeeBasisPoints: number; creators: beet.COption<Creator[]>; collection: beet.COption<Collection>; uses: beet.COption<Uses>; }; /** * @category userTypes */ export declare const dataBeet: beet.FixableBeetArgsStruct<Data>; //# sourceMappingURL=Data.d.ts.map