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