mirror of
https://github.com/sern-handler/handler
synced 2026-06-19 22:32:14 +00:00
23 lines
586 B
TypeScript
23 lines
586 B
TypeScript
import type { Result } from 'ts-results-es'
|
|
|
|
export * as Id from './id';
|
|
export * from './operators';
|
|
export * as Files from './module-loading';
|
|
export * from './functions';
|
|
export { SernError } from './structures/enums';
|
|
export { ModuleStore } from './structures/module-store';
|
|
export * as __Services from './structures/services';
|
|
export { useContainerRaw } from './ioc/base';
|
|
|
|
export type _Module = {
|
|
meta: {
|
|
id: string,
|
|
absPath: string
|
|
}
|
|
name: string,
|
|
execute : Function
|
|
[key: PropertyKey]: unknown
|
|
}
|
|
|
|
export type VoidResult = Result<void, void>;
|