Files
windmill/frontend/src/lib/sharedUtils.ts
T
2025-11-29 01:23:47 +00:00

10 lines
366 B
TypeScript

export { updatePolicy } from './components/apps/editor/appPolicy'
export { genWmillTs } from './components/raw_apps/utils'
export { updateRawAppPolicy } from './components/raw_apps/rawAppPolicy'
export * as wmillTsRaw from "./rawAppWmillTs?raw";
export function capitalize(word: string): string {
return word ? word.charAt(0).toUpperCase() + word.slice(1) : ''
}