-
-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathindex.ts
More file actions
22 lines (20 loc) · 601 Bytes
/
Copy pathindex.ts
File metadata and controls
22 lines (20 loc) · 601 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Code generated by tygo. DO NOT EDIT.
import * as bookapp from "../bookstore"
//////////
// source: inheritance.go
export interface Base {
name: string;
}
export interface Base2<T extends string | number /* int */> {
id: T;
}
export interface Base3<T extends string, X extends number /* int */> {
class: T;
level: X;
}
export interface Other<T extends number /* int */, X extends string> extends Base, Base2<T>, Partial<Base3<X, T>>, bookapp.Book, bookapp.TextBook<T> {
otherWithBase: Base;
otherWithBase2: Base2<X>;
otherValue: string;
author: bookapp.AuthorWithInheritance<T>;
}