UNPKG

191 BTypeScriptView Raw
1import { NodePath } from '@babel/core';
2declare type MemberPath = {
3 path: NodePath;
4 computed: boolean;
5};
6export default function getMembers(path: NodePath): MemberPath[];
7export {};