2025-08-19 08:06:37 -04:00

24 lines
291 B
Plaintext

name: importFromStatement
phrase: import from
---
language: javascript | typescript | javascriptreact | typescriptreact
-
import $1 from "$0";
---
language: python
-
from $1 import $0
---
language: r
-
library(
${1},
include.only = c(${0})${2:,
warn.conflicts = FALSE}
)
---