28 lines
562 B
TypeScript
28 lines
562 B
TypeScript
import { TemplateRef } from '@angular/core';
|
|
/**
|
|
* Defines valid templates in Sidebar.
|
|
* @group Templates
|
|
*/
|
|
export interface SidebarTemplates {
|
|
/**
|
|
* Custom template of header.
|
|
*/
|
|
header(): TemplateRef<any>;
|
|
/**
|
|
* Custom template of content.
|
|
*/
|
|
content(): TemplateRef<any>;
|
|
/**
|
|
* Custom template of footer.
|
|
*/
|
|
footer(): TemplateRef<any>;
|
|
/**
|
|
* Custom template of closeicon.
|
|
*/
|
|
closeicon(): TemplateRef<any>;
|
|
/**
|
|
* Headless template.
|
|
*/
|
|
headless(): TemplateRef<any>;
|
|
}
|