UNPKG

161 BTypeScriptView Raw
1interface DependencyOptions {
2 chunk?: string;
3 exports?: string[];
4}
5declare type DependencyOptionsEx = DependencyOptions & {
6 name: string;
7};