epubavocado
Version:
I am an EPUB object model aspiring to be standards compliant.
12 lines (11 loc) • 944 B
TypeScript
import type { Entity } from '../mixins/entity.js';
import { Maybe } from '../../util.js';
import type { ManifestItem } from './manifest-item.js';
export declare const resolveIdref: (entity: Entity, idref: Maybe<string>) => Maybe<ManifestItem>;
export declare const attributeFilter: (attribute: string, values?: string | string[] | undefined, operator?: string) => string;
export declare const attributeContainsWordFilter: (attribute: string, words?: string | string[] | undefined, operator?: string) => string;
export declare const idFilter: (id?: string | string[] | undefined) => string;
export declare const anyPropertiesFilter: (anyProperties?: string[] | undefined) => string;
export declare const allPropertiesFilter: (allProperties?: string[] | undefined) => string;
export declare const anyRelFilter: (anyProperties?: string[] | undefined) => string;
export declare const allRelFilter: (allProperties?: string[] | undefined) => string;