mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-23 08:00:45 +00:00
10 lines
366 B
TypeScript
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) : ''
|
|
}
|