UNPKG

@delon/abc

Version:

Common business components of ng-alain.

10 lines (9 loc) 358 B
import { TemplateRef } from '@angular/core'; export type SELayout = 'horizontal' | 'vertical' | 'inline'; export type SESize = 'default' | 'compact'; export type SEErrorType = string | TemplateRef<void> | SEError; export type SEError = Record<string, string | TemplateRef<void>>; export interface SEErrorRefresh { name: string; error: SEErrorType; }