blob: b641bab95ee21ff009e1e91802abd1455be1aa61 (
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) {
super();
}
}
|