agent-claw: automated task changes

This commit is contained in:
daniel
2026-05-06 18:55:16 -05:00
parent 38905bb1e9
commit 732b00fb66
8494 changed files with 2018127 additions and 4 deletions

30
cdk/node_modules/aws-cdk/lib/commands/language.d.ts generated vendored Normal file
View File

@@ -0,0 +1,30 @@
export interface LanguageInfo {
name: string;
alias: string;
extensions: string[];
}
export declare const SUPPORTED_LANGUAGES: LanguageInfo[];
/**
* get the language alias from the language name or alias
*
* @example
* getLanguageAlias('typescript') // returns 'ts'
* getLanguageAlias('python') // returns 'py'
*/
export declare function getLanguageAlias(language: string): string | undefined;
/**
* get the language name from the language alias or name
*
* @example
* getLanguageFromAlias('ts') // returns 'typescript'
* getLanguageFromAlias('py') // returns 'python'
*/
export declare function getLanguageFromAlias(alias: string): string | undefined;
/**
* get the file extensions for a given language name or alias
*
* @example
* getLanguageExtensions('typescript') // returns ['.ts', '.js']
* getLanguageExtensions('python') // returns ['.py']
*/
export declare function getLanguageExtensions(language: string): string[];