diff --git a/src/lib/match.ts b/src/lib/match.ts index a21333c..1ab2696 100644 --- a/src/lib/match.ts +++ b/src/lib/match.ts @@ -15,6 +15,9 @@ export interface Match { ): Promise< string | { [MatchMediaType.Hls]: string } | { [MatchMediaType.Native]: string } | null >; + + // allow other properties that may be implemented by the objects that use this interface declaration + [other: string]: unknown; } export enum MatchMediaType {