7 lines
197 B
TypeScript
7 lines
197 B
TypeScript
import { IconButtonType } from '../../../buttons';
|
|
import { ActionConfig } from './action-config.model';
|
|
|
|
export interface ButtonConfig extends ActionConfig {
|
|
readonly type?: IconButtonType;
|
|
}
|