refactor: add more type exports
This commit is contained in:
parent
dd43bb1a1d
commit
93078f2dd6
|
|
@ -27,3 +27,5 @@ export type { YarnProject } from './loader/types';
|
|||
export { parseYarn } from './yarn-spinner/parse/parser';
|
||||
export { compile } from './yarn-spinner/compile/compiler';
|
||||
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 {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";
|
||||
Loading…
Reference in New Issue