/** * @file Entry Point - Interfaces * @module mkbuild/interfaces */ export type { default as Config } from './config.mjs'; export type { default as Context } from './context.mjs'; export type { default as Options } from './options.mjs'; export type { default as Output } from './output.mjs'; export type { default as Result } from './result.mjs'; export type { default as SourceFile } from './source-file.mjs'; export type { default as Task } from './task.mjs';