Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ListProjects

import type { ListProjects } from "https://raw.githubusercontent.com/takker99/scrapbox-userscript-std/0.24.3/mod.ts";
interface ListProjects {
(projectIds: ProjectId[], init?: BaseOptions): Promise<Result<ProjectResponse, NotLoggedInError>>;
fromResponse: (res: Response) => Promise<Result<ProjectResponse, NotLoggedInError>>;
toRequest: (projectIds: ProjectId[], init?: BaseOptions) => Request;
}

§Call Signatures

§Properties

§
fromResponse: (res: Response) => Promise<Result<ProjectResponse, NotLoggedInError>>
[src]

帰ってきた応答からprojectのJSONデータを取得する

§
toRequest: (projectIds: ProjectId[], init?: BaseOptions) => Request
[src]

/api/project の要求を組み立てる