12 lines
No EOL
259 B
TypeScript
12 lines
No EOL
259 B
TypeScript
export abstract class ViewArray {
|
|
|
|
public abstract length(): number;
|
|
|
|
public abstract get(index: number): any;
|
|
|
|
public abstract push(elem: any): void;
|
|
|
|
public abstract toggle(): void;
|
|
|
|
public abstract setVisible(newState: boolean): void;
|
|
} |