View

Definition

export interface View {
    id: string,
    name: string,
    group?: string
    configurations: CustomViewConfigs,
    isFavourite?: boolean,
    isCustom?: boolean,
    key?: number,
}

Usage

import { View } from 'uxp/components';

Last updated