@storybook/angular
Version:
Storybook for Angular: Develop Angular components in isolation with hot reloading.
30 lines (29 loc) • 885 B
TypeScript
import { EventEmitter } from '@angular/core';
export declare const exportedConstant = "An exported constant";
export declare enum ButtonAccent {
'Normal' = "Normal",
'High' = "High"
}
export interface ISomeInterface {
one: string;
two: boolean;
three: any[];
ref?: ISomeInterface;
}
export declare class InputComponent<T> {
/** Appearance style of the button. */
appearance: 'primary' | 'secondary';
counter: number;
/** Specify the accent-type of the button */
accent: ButtonAccent;
/** To test source-generation with overridden propertyname */
foregroundColor: string;
/** Sets the button to a disabled state. */
isDisabled: boolean;
label: string;
ariaLabel: string;
/** Specifies some arbitrary object */
someDataObject: ISomeInterface;
onClick: EventEmitter<Event>;
dashOut: EventEmitter<any>;
}