Language

Definition

export interface Language {
    Name: string,
    Code: string,
    Direction: 'ltr' | 'rtl'
}

Usage

import { Language } from 'uxp/components';

Last updated