sussudio
Version:
An unofficial VS Code Internal API
22 lines (21 loc) • 994 B
text/typescript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { Toggle } from "../toggle/toggle.mjs";
export interface IFindInputToggleOpts {
readonly appendTitle: string;
readonly isChecked: boolean;
readonly inputActiveOptionBorder: string | undefined;
readonly inputActiveOptionForeground: string | undefined;
readonly inputActiveOptionBackground: string | undefined;
}
export declare class CaseSensitiveToggle extends Toggle {
constructor(opts: IFindInputToggleOpts);
}
export declare class WholeWordsToggle extends Toggle {
constructor(opts: IFindInputToggleOpts);
}
export declare class RegexToggle extends Toggle {
constructor(opts: IFindInputToggleOpts);
}