import type { Promisable } from '@xylabs/sdk-js'; import type { ModuleIdentifier } from './ModuleIdentifier.ts'; export type ModuleIdentifierTransformerFunc = (id: ModuleIdentifier) => Promisable; export interface ModuleIdentifierTransformer { transform: ModuleIdentifierTransformerFunc; } //# sourceMappingURL=ModuleIdentifierTransformer.d.ts.map