8 lines
176 B
TypeScript
8 lines
176 B
TypeScript
|
export interface IConfigInterface {
|
||
|
project?: string;
|
||
|
ignore?: string;
|
||
|
error?: string;
|
||
|
skip?: string;
|
||
|
}
|
||
|
export declare const getConfig: () => IConfigInterface;
|