UNPKG
@qelos/assets
Version:
latest (3.8.0)
3.8.0
3.7.4
3.7.3
manage assets like images and static files on remote servers
@qelos/assets
/
node_modules
/
ast-types
/
types.d.ts
7 lines
(6 loc)
•
220 B
TypeScript
View Raw
1
2
3
4
5
6
7
export
declare
type
Fork
= { use<T>(
plugin
:
Plugin
<T>): T; };
export
declare
type
Plugin
<T> =
(
fork
:
Fork
) =>
T;
export
declare
type
Def
=
Plugin
<
void
>;
export
declare
type
Omit
<T, K> =
Pick
<T,
Exclude
<keyof T, K>>;