b641bab95ee21ff009e1e91802abd1455be1aa61
[ccsdk/features.git] / sdnr / wt / odlux / framework / src / actions / titleActions.ts
1 import { Action } from '../flux/action';
2
3 import { IconType } from '../models/iconDefinition'; 
4
5 export class SetTitleAction extends Action {
6  
7   constructor(public title: string, public icon?: IconType) {
8     super();
9   }
10 }