forked from denofn/denopack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.ts
36 lines (32 loc) · 978 Bytes
/
deps.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
export * as fs from "https://deno.land/[email protected]/fs/mod.ts";
export * as path from "https://deno.land/[email protected]/path/mod.ts";
export * as hash from "https://deno.land/[email protected]/hash/mod.ts";
// @deno-types="https://unpkg.com/[email protected]/mod.d.ts"
export { cac } from "https://unpkg.com/[email protected]/mod.js";
// @deno-types="https://unpkg.com/[email protected]/dist/rollup.d.ts"
export { rollup } from "https://cdn.skypack.dev/rollup";
export type {
ModuleFormat,
OutputAsset,
OutputBundle,
OutputChunk,
OutputOptions,
Plugin,
ResolveIdResult,
RollupBuild,
RollupCache,
RollupOptions,
RollupOutput,
} from "https://unpkg.com/[email protected]/dist/rollup.d.ts";
import { default as _debounce } from "https://unpkg.com/[email protected]/debounce.js";
export const debounce = _debounce as <
T extends (...args: unknown[]) => unknown,
>(
func: T,
wait?: number,
options?: {
leading?: boolean;
maxWait?: number;
trailing?: boolean;
},
) => T;