Files
windmill/frontend/src/lib/sharedUtils.ts
2025-12-14 22:32:22 +00:00

9 lines
364 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) : ''
}