fix: typo and wrong function arguments name

This commit is contained in:
lonyele 2019-07-02 00:02:26 +09:00
parent a83ccfb2e4
commit fcc99cc21d

View File

@ -27,7 +27,7 @@ export interface SubAPI {
getData: (storyId: StoryId) => Story | Group;
getParameters: (storyId: StoryId, parameterName?: ParameterName) => Story['parameters'] | any;
getCurrentParameter<S>(parameterName?: ParameterName): S;
showSettingPage: (pageName: string) => void;
showSettingsPage: (storyId: string) => void;
}
interface Group {