如何在打字稿中正确导入和使用界面?

时间:2016-08-30 11:37:09

标签: oop typescript

我想为我的数据使用接口。 的 forms.interface.ts

interface Field {
    name: string;
    style: string;
}

interface Form {
    name: string;
    visible_name: string;
    default: string;
    fields: Field[];
}

interface Interface {
    form: Form;
}

export interface RootInterface {
    interface: Interface[];
}

我试过了......

import {RootInterface} from "../int/form.protorype.interface"
export class MainServiceProvider {
    private form:RootInterface;

如果我尝试为此接口private _generatordata:RootInterface分配var 存在错误Type 'RootInterface' is not an array type or a string type

的编译器异常

0 个答案:

没有答案