From 0f2abf2eca672b939674cee8c46342b09de03ffe Mon Sep 17 00:00:00 2001 From: Ryan <57663112+Neohertz@users.noreply.github.com> Date: Fri, 30 Aug 2024 08:08:32 -0600 Subject: [PATCH] remove docs --- include/customDefinitions.d.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/customDefinitions.d.ts b/include/customDefinitions.d.ts index dcea22280..2a7d34405 100644 --- a/include/customDefinitions.d.ts +++ b/include/customDefinitions.d.ts @@ -278,11 +278,6 @@ interface ContextActionService extends Instance { interface DataModel extends ServiceProvider { readonly Workspace: Workspace; - /** - * Binds a function to be called before the server shuts down. If the bound function accepts a parameter, it passes Enum.CloseReason specifying the reason for the server shutdown. - * - * You can bind multiple functions by calling BindToClose() repeatedly. Bound functions are called in parallel and run at the same time. - */ BindToClose(this: DataModel, callback: (reason: Enum.CloseReason) => void): void; }