- Move Astro files from dealplustech-astro/ to project root - Update Dockerfile: PORT environment variable (default 80) - Add vite.config.ts with allowedHosts: true - Matches nixpacks behavior for Easypanel deployment - No hardcoded ports or domains
11 lines
342 B
TypeScript
11 lines
342 B
TypeScript
import type { OnigurumaAst } from '../parser/parse.js';
|
|
type OnigurumaRegex = {
|
|
pattern: string;
|
|
flags: string;
|
|
};
|
|
/**
|
|
Generates an Oniguruma `pattern` and `flags` from an `OnigurumaAst`.
|
|
*/
|
|
declare function generate(ast: OnigurumaAst): OnigurumaRegex;
|
|
export { type OnigurumaRegex, generate, };
|
|
//# sourceMappingURL=generate.d.ts.map
|