UNPKG

873 BTypeScriptView Raw
1import * as cmn from "@akashic/akashic-cli-commons";
2export declare function removeScriptFromFilePaths(gamejson: cmn.GameConfiguration, filePaths: string[]): void;
3export declare function makeScriptAssetPath(filename: string): string;
4export declare function findUniqueScriptAssetName(gamejson: cmn.GameConfiguration, prefix: string): string;
5export declare function addScriptAsset(gamejson: cmn.GameConfiguration, prefix: string): string;
6export declare function makeUniqueAssetPath(gamejson: cmn.GameConfiguration, assetPath: string): string;
7export declare function extractFilePaths(gamejson: cmn.GameConfiguration, basedir: string): string[];
8export declare function extractScriptAssetFilePaths(gamejson: cmn.GameConfiguration): string[];
9export declare function isScriptJsFile(filePath: string): boolean;
10export declare function isEmptyScriptJs(str: string): boolean;