/** * Represents replaceable state * * @export * @class ReplaceableState */ export class ReplaceableState { constructor(public state: any) { } }