export declare const TerminalWidgetOptions; unique symbol;
export interface TerminalWidgetOptions {
endpoint: Endpoint.Options,
id: string,
caption: string,
label: string
destroyTermOnClose: boolean
}
Upon implementing this interface in a class, I encounter an error: error TS2507: Type 'unique symbol' is not a constructor function type.
It is puzzling to me why TypeScript is unable to recognize the interface.
Can someone please provide an explanation?