projects/article-layer/src/lib/widgets/article-topics/article-topics-model.ts
Properties |
id |
id:
|
Type : number
|
name |
name:
|
Type : string
|
export interface ITopics {
id: number;
name: string;
}
export interface ArtLibTopicsConfig {
label: string;
rowStyle?: string;
infoStyle?: string;
itemStyle?: string;
commaSeparator?: boolean;
}