@polkadot/dev
Version:
A collection of shared CI scripts and development environment used by @polkadot projects
19 lines (18 loc) • 485 B
TypeScript
export declare class Clazz {
#private;
readonly and: number;
static staticProperty: string;
static staticFunction: () => string | null;
/**
* @param and the number we should and with
*/
constructor(and: number);
get something(): number;
doAsync(): Promise<boolean>;
/**
* @description Sets something to something
* @param something The addition
*/
setSomething: (something?: number) => number;
toString(): string;
}