11 lines
232 B
TypeScript
11 lines
232 B
TypeScript
import {DocumentReference} from 'angularfire2/firestore';
|
|
import {SafeUrl} from '@angular/platform-browser';
|
|
|
|
export interface Category {
|
|
image: SafeUrl;
|
|
id: string;
|
|
name: string;
|
|
parent: string;
|
|
ref: DocumentReference;
|
|
}
|