Enabling shorter import paths [automatic]

This commit is contained in:
ts_ci
2021-03-07 14:47:01 +00:00
parent 997941fbf7
commit 202d003cc5
130 changed files with 22666 additions and 223 deletions

View File

@ -0,0 +1,13 @@
export declare const pageIds: readonly ["login.ftl", "register.ftl", "info.ftl", "error.ftl", "login-reset-password.ftl", "login-verify-email.ftl"];
export declare type PageId = typeof pageIds[number];
export declare function generateFtlFilesCodeFactory(params: {
ftlValuesGlobalName: string;
cssGlobalsToDefine: Record<string, string>;
indexHtmlCode: string;
}): {
generateFtlFilesCode: (params: {
pageId: PageId;
}) => {
ftlCode: string;
};
};