refactor(cli): migrate Meteor generator to TS

This commit is contained in:
Gaëtan Maisse 2020-05-14 22:16:57 +02:00
parent 9e0fa878f3
commit a124364968
No known key found for this signature in database
GPG Key ID: D934C0EF3714A8A8

View File

@ -8,8 +8,10 @@ import {
installDependencies,
copyTemplate,
} from '../../helpers';
import { NpmOptions } from '../../NpmOptions';
import { GeneratorOptions } from '../../GeneratorOptions';
export default async (npmOptions, { storyFormat }) => {
export default async (npmOptions: NpmOptions, { storyFormat }: GeneratorOptions) => {
const [
storybookVersion,
actionsVersion,