fixed typo

This commit is contained in:
snoop 2017-09-14 16:15:55 +09:00
parent 877e9fea83
commit 612c9c68b4

View File

@ -1,12 +1,12 @@
import MetaSensorItemKey from '../../api/model/MetaSensorItemKey'; import MetaSensorItemKey from '../../api/model/MetaSensorItemKey';
export interface State { export interface State {
readonly MetaSensorIteKeyList: MetaSensorItemKey[]; readonly MetaSensorItemKeyList: MetaSensorItemKey[];
readonly error?: Error; readonly error?: Error;
} }
export const defaultState: State = { export const defaultState: State = {
MetaSensorIteKeyList: undefined, MetaSensorItemKeyList: undefined,
error: undefined, error: undefined,
}; };