waifuim
    Preparing search index...

    Interface ListTagsOptions

    interface ListTagsOptions {
        includedIds?: number | number[];
        includedSlugs?: string | string[];
        name?: string;
        page?: number;
        pageSize?: number;
    }
    Index

    Properties

    includedIds?: number | number[]

    Filter by specific tag IDs (exact match). Example: [12, 13]

    includedSlugs?: string | string[]

    Filter by specific tag slugs (exact match). Example: ['waifu', 'maid']

    name?: string

    Filter by tag name (partial match, case-insensitive). Example: Waifu

    page?: number

    Page number for pagination. Default: 1.

    pageSize?: number

    Number of results per page. Default: 30. Max: unlimited.