From 2dc2c9d24e1c8d20faed5fe82c9ddea4da0af7e8 Mon Sep 17 00:00:00 2001 From: Christopher Carpenter Date: Fri, 31 May 2019 14:25:23 -0400 Subject: [PATCH] Add 'addParameters' to index.d.ts for angular. --- app/angular/src/client/preview/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/angular/src/client/preview/index.d.ts b/app/angular/src/client/preview/index.d.ts index 2c26193ebbc3..335479b05290 100644 --- a/app/angular/src/client/preview/index.d.ts +++ b/app/angular/src/client/preview/index.d.ts @@ -5,6 +5,7 @@ import { IApi, IStoribookSection } from '../../../index'; export function storiesOf(kind: string, module: NodeModule): IApi; export function setAddon(addon: any): void; export function addDecorator(decorator: any): IApi; +export function addParameters(parameter: any): IApi; export function configure(loaders: () => void, module: NodeModule): void; export function getStorybook(): IStoribookSection[]; export function clearDecorators(): void;