mirror of
https://github.com/futurepress/epub.js.git
synced 2025-10-02 14:49:16 +02:00
12 lines
452 B
TypeScript
12 lines
452 B
TypeScript
import Contents from "../contents";
|
|
import Section from "../section";
|
|
|
|
export function replaceBase(doc: Document, section: Section): void;
|
|
export function replaceCanonical(doc: Document, section: Section): void;
|
|
export function replaceMeta(doc: Document, section: Section): void;
|
|
export function replaceLinks(contents: Contents, fn: Function): void;
|
|
export function substitute(
|
|
contents: Contents,
|
|
urls: string[],
|
|
replacements: string[]
|
|
): void;
|