UNPKG

@v4fire/client

Version:

V4Fire client core library

17 lines (15 loc) 378 B
/*! * V4Fire Client Core * https://github.com/V4Fire/Client * * Released under the MIT license * https://github.com/V4Fire/Client/blob/master/LICENSE */ export interface Module extends Dictionary { id?: unknown; status?: 'pending' | 'loaded' | 'failed'; import?: unknown; promise?: CanArray<Promise<unknown>>; load(): Promise<unknown>; wait?(): Promise<unknown>; }