stackexchange-api
Version:
A Node.js wrapper for the StackExchange API
12 lines (11 loc) • 361 B
TypeScript
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);
}