export declare const TerminalWidgetOptions; unique synbol;
export interface TerminalWidgetOptions {
endpoint: Endpoint.Options,
id: string,
caption: string,
label: string
destroyTermOnClose: boolean
}
With this code when I create a class implementing this interface, I get an error : error TS2507: Type 'unique symbol' is not a constructor function type.
I don't understand why TypeScript doesn't see the interface.
Is someone could explain me ?