import { NgDocApiListItem } from './api-list-item';
export interface NgDocApiList {
    title: string;
    items: NgDocApiListItem[];
}
