File size: 250 Bytes
bc20498 |
1 2 3 4 5 6 7 8 |
import type { RuleContext } from '../types';
/**
* Load module
*/
export declare function loadModule<R>(context: RuleContext, name: string): R | null;
/** Load modules for browser */
export declare function loadModulesForBrowser(): Promise<void>;
|