refactor: add more type exports
This commit is contained in:
@@ -27,3 +27,5 @@ export type { YarnProject } from './loader/types';
|
|||||||
export { parseYarn } from './yarn-spinner/parse/parser';
|
export { parseYarn } from './yarn-spinner/parse/parser';
|
||||||
export { compile } from './yarn-spinner/compile/compiler';
|
export { compile } from './yarn-spinner/compile/compiler';
|
||||||
export { YarnRunner } from './yarn-spinner/runtime/runner';
|
export { YarnRunner } from './yarn-spinner/runtime/runner';
|
||||||
|
export type { RunnerOptions } from './yarn-spinner/runtime/runner';
|
||||||
|
export type { TextResult, OptionsResult, CommandResult, RuntimeResult } from './yarn-spinner/runtime/results';
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
export {parseYarn} from './parse/parser';
|
export {parseYarn} from './parse/parser';
|
||||||
export {compile} from './compile/compiler';
|
export {compile} from './compile/compiler';
|
||||||
export {YarnRunner} from "./runtime/runner";
|
export {YarnRunner} from "./runtime/runner";
|
||||||
|
export type {RunnerOptions} from "./runtime/runner";
|
||||||
|
export type {TextResult, OptionsResult, CommandResult, RuntimeResult} from "./runtime/results";
|
||||||
Reference in New Issue
Block a user