You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lib/src/service/FakeCanonical.ts

12 lines
358 B

import {Canonical} from './Canonical'
/**
* Canonical class used for faking canonical units. Here, the canonical resolver
* is registered with the global service, but no files are loaded from the filesystem.
*/
export class FakeCanonical<T> extends Canonical<T> {
public async up(): Promise<void> {
this.canon.registerCanonical(this)
}
}