update types

This commit is contained in:
Mutasem 2021-08-09 17:51:36 +02:00
parent e60ca02841
commit 60aacaf5be

View file

@ -1,7 +1,7 @@
import { N8nComponent, N8nComponentSize } from '../component'; import { N8nComponent, N8nComponentSize } from '../component';
/** Button type */ /** Button type */
export type ButtonType = 'primary' | 'outline' | 'light'; export type ButtonType = 'primary' | 'outline' | 'light' | 'text';
/** Button Component */ /** Button Component */
export declare class N8nButton extends N8nComponent { export declare class N8nButton extends N8nComponent {