aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/framework/src/actions/titleActions.ts
blob: 4e5174d59cb0fd8ba2dbdcacb5d52dd18b1ef3b5 (plain)
1
2
3
4
5
6
7
8
9
10
import { Action } from '../flux/action';

import { IconType } from '../models/iconDefinition';

export class SetTitleAction extends Action {

  constructor(public title: string, public icon?: IconType, public appId?: string) {
    super();
  }
}