24 lines
291 B
Plaintext
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}
|
|
)
|
|
---
|