Skip to content

Commit

Permalink
Fix: Replace 'walkes' with 'estree-walker' (styleguidist#1349)
Browse files Browse the repository at this point in the history
Because walkes has LGPL-3 license.

Fixes styleguidist#1210
  • Loading branch information
eragon512 authored and sapegin committed Jun 19, 2019
1 parent b198d4e commit 4ef3cc9
Show file tree
Hide file tree
Showing 5 changed files with 184 additions and 97 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
declare module 'walkes' {
declare module 'estree-walker' {
import type { AcornNode } from 'acorn';

declare function walkes(
declare export function walk (
node: AcornNode,
visitors: { [key: string]: (node: AcornNode) => void }
): void;

declare export default typeof walkes;

}
Loading

0 comments on commit 4ef3cc9

Please sign in to comment.