qiwi/module-federation-manifest-plugin

View on GitHub
src/main/ts/identifier-parsers/interface.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
export interface IdentifierParser<T> {
  canActive(identifier: string): boolean
  parse(identifier: string): T
}