UNPKG

tslint-clean-code

Version:
10 lines (9 loc) 189 B
/** * Interface of aria attribute. */ export interface IAria { // tslint:disable-next-line:no-reserved-keywords type: string; values: string[]; allowUndefined: boolean; }