Skip to content

Instantly share code, notes, and snippets.

@hurali97
Last active August 12, 2022 08:34
Show Gist options
  • Save hurali97/c18ef9b75ff29f0ab2d853c116a38022 to your computer and use it in GitHub Desktop.
Save hurali97/c18ef9b75ff29f0ab2d853c116a38022 to your computer and use it in GitHub Desktop.
Spec file for our NativeDlog
import type {TurboModule} from 'react-native';
import {TurboModuleRegistry} from 'react-native';
export interface Spec extends TurboModule {
log(message: string): void;
}
export default TurboModuleRegistry.get<Spec>('Dlog');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment