convergencelabs_monaco-coll.../src/ts/OnDisposed.ts
2019-12-08 12:40:32 -06:00

16 lines
479 B
TypeScript

/*
* Copyright (c) 2019 Convergence Labs, Inc.
*
* This file is part of the Monaco Collaborative Extensions, which is
* released under the terms of the MIT license. A copy of the MIT license
* is usually provided as part of this source code package in the LICENCE
* file. If it was not, please see <https://opensource.org/licenses/MIT>
*/
/**
* A simple callback type that signifies a resource has been disposed.
*
* @internal
*/
export type OnDisposed = () => void;