mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 11:30:18 +00:00
6 lines
149 B
Dart
6 lines
149 B
Dart
import 'package:js/js.dart';
|
|
|
|
@JS("Module.ccall")
|
|
external int ccall(String name, String returnType, List<String> argTypes,
|
|
List<dynamic> args);
|