mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
fc494fbf7f
* Export file type from each file * Fix example scripts * Strongly type CLI files * Allow bash files * Update API version * Remove useless files * WIP: Diff based push * Fixup other code * Implement Flow diffing * Implement resource type * Remaining impls * WIP * Fix missing file error * Fix misstyping * Improve error message * Fix type inferrence * Allow REMOVE everywhere * Fix empty changeset * Fix error message * Fix type inferrence 2 * Fix variable diffs * Fix include checks * Move push & pull * Handle script in sync * Handle scripts * Allow multi-path creation * Fix merge conflicts * Fix #1173 * Update Dependencies * Add missing await * Apply review comments * Fix diff --------- Co-authored-by: Ruben Fiszel <ruben@rubenfiszel.com>
9 lines
250 B
TypeScript
9 lines
250 B
TypeScript
// globally shared decoverto instance
|
|
import { Decoverto } from "npm:decoverto";
|
|
const decoverto = new Decoverto();
|
|
|
|
// TODO: Properly type FlowModule
|
|
|
|
export { Any, array, map, MapShape, model, property } from "npm:decoverto";
|
|
export { decoverto };
|