@meshsdk/mesh-csl
Version:
Cardano Off-chain Code APIs built on cardano-serialization-lib
20 lines (19 loc) • 608 B
TypeScript
import { BuiltinByteString, ConStr, Integer } from '../type';
export declare class ByteArray {
bytes: string;
constructor(bytes?: string);
toObject(): BuiltinByteString;
}
export declare class Int {
int: number;
constructor(int?: number);
toObject(): Integer;
}
export declare class Constructor {
conStr: number;
fields: any[];
constructor(conStr: number, fields: any[]);
toObject(): ConStr;
}
export type BlueprintDefinition = Constructor | ByteArray | Int;
export declare const parseBlueprintDefinition: (item: any, args?: never[]) => Constructor | ByteArray | Int;