convergencelabs_monaco-coll.../src/ts/OnDisposed.ts

16 lines
479 B
TypeScript
Raw Normal View History

/*
* Copyright (c) 2019 Convergence Labs, Inc.
*
2019-12-08 18:40:32 +00:00
* 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>
*/
2019-03-04 04:18:50 +00:00
/**
* A simple callback type that signifies a resource has been disposed.
*
* @internal
*/
export type OnDisposed = () => void;