Interface GiraffeProjectApp

interface GiraffeProjectApp {
    app: string;
    appName: string;
    city?: Record<string, any>;
    featureCategories: GiraffeFeatureCategories;
    id: string;
    mapStyle?: Record<string, any> | Record<string, any>[];
    opacity?: any;
    private?: {
        iframe?: boolean;
        logo: string;
        url: string;
    } & Record<string, any>;
    project: ProjectId;
    public: GiraffePublic;
    readMe?: any;
    version?: string;
}

Hierarchy

  • OtherProjectApp
    • GiraffeProjectApp

Properties

app: string
appName: string
city?: Record<string, any>
featureCategories: GiraffeFeatureCategories
id: string
mapStyle?: Record<string, any> | Record<string, any>[]
opacity?: any
private?: {
    iframe?: boolean;
    logo: string;
    url: string;
} & Record<string, any>
project: ProjectId
public: GiraffePublic
readMe?: any
version?: string