You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
552 B
10 lines
552 B
export declare type LanguageOptions = {
|
|
isTS: boolean;
|
|
isModern: boolean;
|
|
isReact: boolean;
|
|
};
|
|
export declare function getExtensions(platforms: string[], extensions: string[], workflows: string[]): string[];
|
|
export declare function getLanguageExtensionsInOrder({ isTS, isModern, isReact, }: LanguageOptions): string[];
|
|
export declare function getManagedExtensions(platforms: string[], languageOptions?: LanguageOptions): string[];
|
|
export declare function getBareExtensions(platforms: string[], languageOptions?: LanguageOptions): string[];
|