mirror of
https://github.com/convergencelabs/monaco-collab-ext.git
synced 2024-10-27 20:34:17 +00:00
16 lines
479 B
TypeScript
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;
|