Add React Devtools
This commit is contained in:
parent
f846678b90
commit
bab1ceb831
10 changed files with 1212 additions and 3 deletions
14
ts/devtools-core.d.ts
vendored
Normal file
14
ts/devtools-core.d.ts
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
// Copyright 2024 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
declare module 'react-devtools-core' {
|
||||
type DevToolsOptions = {
|
||||
useHttps?: boolean;
|
||||
};
|
||||
|
||||
function initialize(): void;
|
||||
|
||||
function connectToDevTools(options?: DevToolsOptions): void;
|
||||
|
||||
export { initialize, connectToDevTools };
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue