notes/createの型定義をした

This commit is contained in:
na2na 2022-06-11 07:34:14 +09:00
parent b426e8792c
commit b2875c9d90

View file

@ -36,6 +36,27 @@ export type Meta = {
lastWakingAt: number;
};
type postParam = {
text: string;
visibility?: 'public' | 'home' | 'followers' | 'specified';
visibleUserIds?: string[];
cw? : string | null;
localOnly?: boolean;
noExtractMentions?: boolean;
noExtractHashtags?: boolean;
noExtractEmojis?: boolean;
fileIds?: string[];
replyId?: string;
renoteId?: string;
channelId?: string;
poll?: {
choices: string[];
multiple?: boolean;
expiresAt?: number | null;
expiredAfter?: number | null;
}
}
/**
*
*/
@ -374,7 +395,7 @@ export default class 藍 {
* 稿
*/
@autobind
public async post(param: any) {
public async post(param: postParam) {
const res = await this.api('notes/create', param);
return res.createdNote;
}