We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Допустим, есть тип и его реализация:
type vector2 = { x: number; y: number; lengthSquared: () => number; } let v2dOriginal: vector2 = { x: 0; y: 0; lengthSquared => () { return x * x + y * y }; }
Если мы хотим сделать ещё один объект типа vector2, то надо заново расписывать реализацию lengthSquared.
vector2
lengthSquared
The text was updated successfully, but these errors were encountered:
Решение предложено в #1
Sorry, something went wrong.
Однако, прежде надо разобраться с #14
Фича требует переосмысления, поскольку методов в объекте больше нет, они сделаны по модели GoLang
Successfully merging a pull request may close this issue.
Допустим, есть тип и его реализация:
Если мы хотим сделать ещё один объект типа
vector2
, то надо заново расписывать реализациюlengthSquared
.The text was updated successfully, but these errors were encountered: