Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
11 lines (8 sloc)
259 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as Immutable from "immutable"; | |
export interface ModalsRecordProps { | |
modalType: string; | |
} | |
export type ModalsRecord = Immutable.RecordOf<ModalsRecordProps>; | |
export const makeModalsRecord = Immutable.Record<ModalsRecordProps>({ | |
modalType: "" | |
}); |