8 lines
126 B
TypeScript
8 lines
126 B
TypeScript
/**
|
|
* @publicApi
|
|
*/
|
|
export interface OverrideByFactoryOptions {
|
|
factory: (...args: any[]) => any;
|
|
inject?: any[];
|
|
}
|