-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
21 lines (18 loc) · 801 Bytes
/
index.ts
File metadata and controls
21 lines (18 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// biome-ignore lint/performance/noBarrelFile: Library entrypoint
export { crudArg } from "./src/crud-arg"
export { refreshable, type RefreshableControls, FORCE_REFRESH } from "./src/refreshable"
import getAllScriptPaths from "./src/getAllScriptPaths"
export { getAllScriptPaths }
export { withCRUDCache } from "./src/with-crud-cache"
export { showError } from "./src/showError"
export { startSpinner, SPINNER_VARIANTS } from "./src/spinners/spinner"
export type { SpinnerVariant } from "./src/spinners/spinner"
import promptConfirm from "./src/promptConfirm"
export { promptConfirm }
export { markdownEscape } from "./src/helpers/markdown-escape"
import "@johnlindquist/kit"
// noinspection ES6ConvertVarToLetConst
declare global {
var ctrl: "cmd" | "ctrl"
}
global.ctrl = cmd as "cmd" | "ctrl"