如何在打字稿中安全地声明嵌套对象类型

时间:2018-12-03 21:14:50

标签: javascript node.js typescript

我想创建一个包含组且组具有文件的对象。可选文件具有接口,如果一个组不包含其文件,我想得到错误消息。

export interface Group_A_Files {
    'movie': string
    'image': string
    'other': string
}

export interface Group_B_Files {
    'image': string
}

export const groups = {
    'groupA'  : {
        'someField': 'some value',
        'files': <Group_A_Files> {
            'movie': '',
            'image': '',
        } // I want to get an error from the IDE, because other is required in Group_A_Files, but not set by me
    },
    'groupB'  : {
        'someField': 'some value',
        'files': <Group_B_Files>{
            'image': '',
            'bla':  ''
        } // I want to get an error from the IDE, because bla is not defined in Group_B_Files 
    }
}

我评论了,我应该从IDE那里获取错误消息,但是我没有得到。正确的方法是什么?

我有很多组,还有5种类型的组文件。这些是常量,并已硬编码到应用程序中,

我不想在接口中定义孔组,然后也要声明它,只是为了从IDE中获取错误消息,我想在设置它时定义类型。

这里是demo

1 个答案:

答案 0 :(得分:2)

您当前正在打字,而您想声明类型,可以通过一个小的助手来完成:

  function <T> assert(el: T) { return el; }

可用作:

'groupB'  : {
    'someField': 'some value',
    'files': assert<Group_B_Files>({
        'image': '',
        'bla':  ''
    }),
}

否则,您可以键入整个对象:

interface IGroups {
  groupA: {
    someField: string;
    files: Group_A_Files;
 }
};

export const groups: IGroups = {
    'groupA'  : {
        'someField': 'some value',
        'files': <Group_A_Files> {
            'movie': '',
            'image': '',
         }
    },
};