delete getDependents and getDependencies methods from TS API

This commit is contained in:
Vyacheslav Matyukhin 2022-09-01 18:15:36 +04:00
parent d76c2f8ac7
commit 8842f7b25e
No known key found for this signature in database
GPG Key ID: 3D2A774C5489F96C

View File

@ -62,14 +62,6 @@ export class SqProject {
return RSProject.setContinues(this._value, sourceId, continues);
}
getDependencies(sourceId: string) {
return RSProject.getDependencies(this._value, sourceId);
}
getDependents(sourceId: string) {
return RSProject.getDependents(this._value, sourceId);
}
getRunOrder() {
return RSProject.getRunOrder(this._value);
}