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