interface JDataSourceReference {
    projects: {
        [key: string]: {
            layers: string[];
            tables: string[];
        };
    };
}

Properties

Properties

projects: {
    [key: string]: {
        layers: string[];
        tables: string[];
    };
}

Type declaration

  • [key: string]: {
        layers: string[];
        tables: string[];
    }
    • layers: string[]
    • tables: string[]