@keymanapp/kmc
Version:
Keyman Developer compiler command line tools
232 lines • 8.58 kB
TypeScript
export declare class InfrastructureMessages {
static FATAL_UnexpectedException: number;
static Fatal_UnexpectedException: (o: {
e: any;
}) => import("@keymanapp/developer-utils").CompilerEvent;
static INFO_BuildingFile: number;
static Info_BuildingFile: (o: {
filename: string;
relativeFilename: string;
}) => {
filename: string;
line?: number;
code: number;
message: string;
detail?: string;
exceptionVar?: any;
};
static ERROR_FileDoesNotExist: number;
static Error_FileDoesNotExist: (o: {
filename: string;
}) => import("@keymanapp/developer-utils").CompilerEvent;
static ERROR_FileTypeNotRecognized: number;
static Error_FileTypeNotRecognized: (o: {
filename: string;
extensions: string;
}) => import("@keymanapp/developer-utils").CompilerEvent;
static ERROR_OutFileNotValidForProjects: number;
static Error_OutFileNotValidForProjects: () => import("@keymanapp/developer-utils").CompilerEvent;
static INFO_FileBuiltSuccessfully: number;
static Info_FileBuiltSuccessfully: (o: {
filename: string;
relativeFilename: string;
}) => {
filename: string;
line?: number;
code: number;
message: string;
detail?: string;
exceptionVar?: any;
};
static INFO_FileNotBuiltSuccessfully: number;
static Info_FileNotBuiltSuccessfully: (o: {
filename: string;
relativeFilename: string;
}) => {
filename: string;
line?: number;
code: number;
message: string;
detail?: string;
exceptionVar?: any;
};
static ERROR_InvalidProjectFile: number;
static Error_InvalidProjectFile: (o: {
message: string;
}) => import("@keymanapp/developer-utils").CompilerEvent;
static HINT_FilenameHasDifferingCase: number;
static Hint_FilenameHasDifferingCase: (o: {
reference: string;
filename: string;
}) => import("@keymanapp/developer-utils").CompilerEvent;
static ERROR_UnknownFileFormat: number;
static Error_UnknownFileFormat: (o: {
format: string;
}) => import("@keymanapp/developer-utils").CompilerEvent;
static INFO_ProjectBuiltSuccessfully: number;
static Info_ProjectBuiltSuccessfully: (o: {
filename: string;
relativeFilename: string;
}) => {
filename: string;
line?: number;
code: number;
message: string;
detail?: string;
exceptionVar?: any;
};
static INFO_ProjectNotBuiltSuccessfully: number;
static Info_ProjectNotBuiltSuccessfully: (o: {
filename: string;
relativeFilename: string;
}) => {
filename: string;
line?: number;
code: number;
message: string;
detail?: string;
exceptionVar?: any;
};
static INFO_TooManyMessages: number;
static Info_TooManyMessages: (o: {
count: number;
}) => import("@keymanapp/developer-utils").CompilerEvent;
static ERROR_FileTypeNotFound: number;
static Error_FileTypeNotFound: (o: {
ext: string;
}) => import("@keymanapp/developer-utils").CompilerEvent;
static ERROR_NotAProjectFile: number;
static Error_NotAProjectFile: (o: {
filename: string;
}) => import("@keymanapp/developer-utils").CompilerEvent;
static INFO_WarningsHaveFailedBuild: number;
static Info_WarningsHaveFailedBuild: () => import("@keymanapp/developer-utils").CompilerEvent;
static ERROR_CannotCreateFolder: number;
static Error_CannotCreateFolder: (o: {
folderName: string;
e: any;
}) => import("@keymanapp/developer-utils").CompilerEvent;
static ERROR_InvalidProjectFolder: number;
static Error_InvalidProjectFolder: (o: {
folderName: string;
}) => import("@keymanapp/developer-utils").CompilerEvent;
static ERROR_UnsupportedProjectVersion: number;
static Error_UnsupportedProjectVersion: (o: {
version: string;
}) => import("@keymanapp/developer-utils").CompilerEvent;
static HINT_ProjectIsVersion10: number;
static Hint_ProjectIsVersion10: () => import("@keymanapp/developer-utils").CompilerEvent;
static ERROR_OutFileCanOnlyBeSpecifiedWithSingleInfile: number;
static Error_OutFileCanOnlyBeSpecifiedWithSingleInfile: () => import("@keymanapp/developer-utils").CompilerEvent;
static ERROR_InvalidMessageFormat: number;
static Error_InvalidMessageFormat: (o: {
message: string;
}) => import("@keymanapp/developer-utils").CompilerEvent;
static ERROR_MessageNamespaceNotFound: number;
static Error_MessageNamespaceNotFound: (o: {
code: number;
}) => import("@keymanapp/developer-utils").CompilerEvent;
static ERROR_MessageCodeNotFound: number;
static Error_MessageCodeNotFound: (o: {
code: number;
}) => import("@keymanapp/developer-utils").CompilerEvent;
static ERROR_MessageCannotBeCoerced: number;
static Error_MessageCannotBeCoerced: (o: {
code: number;
}) => import("@keymanapp/developer-utils").CompilerEvent;
static ERROR_UnrecognizedMessageCode: number;
static Error_UnrecognizedMessageCode: (o: {
message: string;
}) => import("@keymanapp/developer-utils").CompilerEvent;
static ERROR_MustSpecifyMessageCode: number;
static Error_MustSpecifyMessageCode: () => import("@keymanapp/developer-utils").CompilerEvent;
static ERROR_MessagesCannotBeFilteredForMarkdownFormat: number;
static Error_MessagesCannotBeFilteredForMarkdownFormat: () => import("@keymanapp/developer-utils").CompilerEvent;
static ERROR_OutputPathMustBeSpecifiedForMarkdownFormat: number;
static Error_OutputPathMustBeSpecifiedForMarkdownFormat: () => import("@keymanapp/developer-utils").CompilerEvent;
static ERROR_OutputPathMustExistAndBeADirectory: number;
static Error_OutputPathMustExistAndBeADirectory: (o: {
outPath: string;
}) => import("@keymanapp/developer-utils").CompilerEvent;
static ERROR_MessageNamespaceNameNotFound: number;
static Error_MessageNamespaceNameNotFound: (o: {
message: string;
}) => import("@keymanapp/developer-utils").CompilerEvent;
static ERROR_GenerateRequiresId: number;
static Error_GenerateRequiresId: () => import("@keymanapp/developer-utils").CompilerEvent;
static ERROR_CopyRequiresSource: number;
static Error_CopyRequiresSource: () => import("@keymanapp/developer-utils").CompilerEvent;
static ERROR_CopyRequiresOutPath: number;
static Error_CopyRequiresOutPath: () => import("@keymanapp/developer-utils").CompilerEvent;
static INFO_CopyingProject: number;
static Info_CopyingProject: (o: {
source: string;
dest: string;
}) => {
filename: string;
line?: number;
code: number;
message: string;
detail?: string;
exceptionVar?: any;
};
static INFO_ProjectCopiedSuccessfully: number;
static Info_ProjectCopiedSuccessfully: (o: {
source: string;
dest: string;
}) => {
filename: string;
line?: number;
code: number;
message: string;
detail?: string;
exceptionVar?: any;
};
static INFO_ProjectNotCopiedSuccessfully: number;
static Info_ProjectNotCopiedSuccessfully: (o: {
source: string;
dest: string;
}) => {
filename: string;
line?: number;
code: number;
message: string;
detail?: string;
exceptionVar?: any;
};
static INFO_GeneratingProject: number;
static Info_GeneratingProject: (o: {
id: string;
outPath: string;
}) => {
filename: string;
line?: number;
code: number;
message: string;
detail?: string;
exceptionVar?: any;
};
static INFO_ProjectGeneratedSuccessfully: number;
static Info_ProjectGeneratedSuccessfully: (o: {
id: string;
}) => {
filename: string;
line?: number;
code: number;
message: string;
detail?: string;
exceptionVar?: any;
};
static INFO_ProjectNotGeneratedSuccessfully: number;
static Info_ProjectNotGeneratedSuccessfully: (o: {
id: string;
}) => {
filename: string;
line?: number;
code: number;
message: string;
detail?: string;
exceptionVar?: any;
};
}
//# sourceMappingURL=infrastructureMessages.d.ts.map