UNPKG

@strandgeek/powerup

Version:

PowerUP is a javascript library that makes managing a LUKSO Universal Profile easy

13 lines (12 loc) 285 B
interface StorageSchemaDefinition { name: string; keyType: string; valueType: string; } interface StorageSchema { [key: string]: StorageSchemaDefinition; } export declare class Storage { constructor(from: string, contract: any, schema: StorageSchema); } export {};