all files / src/ all-path.ts

100% Statements 6/6
100% Branches 0/0
100% Functions 3/3
100% Lines 6/6
1 2 3 4 5 6 7 8 9 10 11    10×      
import { PathInterface } from './path.interface';
export class RestangularAllPath implements PathInterface {
  constructor(
    public endpoint: string
  ) { }
 
  public path(): Array<string> {
    return [this.endpoint];
  }
}