UNPKG

@neo-one/smart-contract-compiler

Version:

NEO•ONE TypeScript smart contract compiler.

10 lines (9 loc) 359 B
import { WrappableType } from '../../constants'; import { Helper } from '../Helper'; export interface StructuredStorageBaseHelperOptions { readonly type: WrappableType; } export declare abstract class StructuredStorageBaseHelper extends Helper { protected readonly type: WrappableType; constructor({ type }: StructuredStorageBaseHelperOptions); }