8 lines
108 B
TypeScript
8 lines
108 B
TypeScript
|
|
import {UniqueItem} from "./common.ts";
|
||
|
|
|
||
|
|
export interface Survey extends UniqueItem{
|
||
|
|
title: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
|