Use IDestroyable instead of IDisposable

For consistency within our project
This commit is contained in:
Travis Ralston 2020-06-09 08:08:39 -06:00
parent bed4766ec4
commit eefc40e0f8
3 changed files with 7 additions and 6 deletions

View file

@ -14,6 +14,6 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
export interface IDisposable {
dispose(): void;
export interface IDestroyable {
destroy(): void;
}