igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
12 lines (11 loc) • 336 B
TypeScript
import { Base, Type } from "./type";
/**
* @hidden
*/
export declare abstract class XmlNameTable extends Base {
static $t: Type;
abstract b(a: string): string;
abstract a(a: string[], b: number, c: number): string;
abstract d(a: string): string;
abstract c(a: string[], b: number, c: number): string;
}