1

我使用的是 GitHub 客户端Octokit 。我正在尝试读取目录的内容,并且返回类型octokit.repos.getContent是具有许多可能值的类型联合。

我试图将返回值缩小getContent到这些选项之一,它看起来像这样:

"content-directory": {
    type: string;
    size: number;
    name: string;
    path: string;
    content?: string;
    sha: string;
    url: string;
    git_url: string | null;
    html_url: string | null;
    download_url: string | null;
    _links: {
        git: string | null;
        html: string | null;
        self: string;
    };
}[]

我从中创建了一个type

type DirectoryItems = components["schemas"]["content-directory"];

现在我正在尝试在类型保护中使用它:

const { data } = await octokit.repos.getContent({
    // ...
});

if(data instanceof DirectoryItems) {

}

但它说

'DirectoryItems' 仅指一种类型,但在此处用作值。

如何缩小类型data以确保它确实是“内容目录”项的数组?

4

0 回答 0