Skip to content

Instantly share code, notes, and snippets.

@harriyott
Last active March 7, 2018 13:18
Embed
What would you like to do?
export class KittenRoutes {
static readonly listKittens = 'api/kittens/list';
static feedKitten(kittenId: any): string {
return `api/kitten/${kittenId}/feed`;
}
static adoptKitten(kittenId: any): string {
return `api/kitten/${kittenId}/feed`;
}
static renameKitten(kittenId: any, newName: any): string {
return `api/kitten/${kittenId}/rename/${newName}`;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment