- 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
18 lines
432 B
TypeScript
18 lines
432 B
TypeScript
export {gfmTaskListItemHtml} from './lib/html.js'
|
|
export {gfmTaskListItem} from './lib/syntax.js'
|
|
|
|
/**
|
|
* Augment types.
|
|
*/
|
|
declare module 'micromark-util-types' {
|
|
/**
|
|
* Token types.
|
|
*/
|
|
interface TokenTypeMap {
|
|
taskListCheck: 'taskListCheck'
|
|
taskListCheckMarker: 'taskListCheckMarker'
|
|
taskListCheckValueChecked: 'taskListCheckValueChecked'
|
|
taskListCheckValueUnchecked: 'taskListCheckValueUnchecked'
|
|
}
|
|
}
|