AutoScheduleJS/userstate-manager

View on GitHub
src/data-structures/identifier.interface.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface IIdentifier {
  query: string;
  potential?: string;
  material?: string;
  split?: string;
  place?: string;
  [key: string]: string | undefined;
}