UNPKG

stackexchange-api

Version:
12 lines (11 loc) 361 B
import { TypeNotice } from '../interfaces/result-types/TypeNotice'; /** * The equivalent of [Type notice](https://api.stackexchange.com/docs/types/notice).<br> * Represents a Notice on a [[Post]]. */ export declare class Notice { body: string | null; creationDate: Date | null; ownerUserId: number | null; constructor(notice?: TypeNotice); }