This repository was archived by the owner on Oct 4, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -87,19 +87,19 @@ createDocumentFragment :: forall eff. Document -> Eff (dom :: DOM | eff) Documen
8787#### ` createTextNode `
8888
8989``` purescript
90- createTextNode :: forall eff. String -> Eff (dom :: DOM | eff) Text
90+ createTextNode :: forall eff. String -> Document -> Eff (dom :: DOM | eff) Text
9191```
9292
9393#### ` createComment `
9494
9595``` purescript
96- createComment :: forall eff. String -> Eff (dom :: DOM | eff) Comment
96+ createComment :: forall eff. String -> Document -> Eff (dom :: DOM | eff) Comment
9797```
9898
9999#### ` createProcessingInstruction `
100100
101101``` purescript
102- createProcessingInstruction :: forall eff. String -> String -> Eff (dom :: DOM | eff) ProcessingInstruction
102+ createProcessingInstruction :: forall eff. String -> String -> Document -> Eff (dom :: DOM | eff) ProcessingInstruction
103103```
104104
105105#### ` importNode `
Original file line number Diff line number Diff line change @@ -24,9 +24,9 @@ foreign import getElementsByClassName :: forall eff. String -> Document -> Eff (
2424foreign import createElement :: forall eff . String -> Document -> Eff (dom :: DOM | eff ) Element
2525foreign import createElementNS :: forall eff . Nullable String -> String -> Document -> Eff (dom :: DOM | eff ) Element
2626foreign import createDocumentFragment :: forall eff . Document -> Eff (dom :: DOM | eff ) DocumentFragment
27- foreign import createTextNode :: forall eff . String -> Eff (dom :: DOM | eff ) Text
28- foreign import createComment :: forall eff . String -> Eff (dom :: DOM | eff ) Comment
29- foreign import createProcessingInstruction :: forall eff . String -> String -> Eff (dom :: DOM | eff ) ProcessingInstruction
27+ foreign import createTextNode :: forall eff . String -> Document -> Eff (dom :: DOM | eff ) Text
28+ foreign import createComment :: forall eff . String -> Document -> Eff (dom :: DOM | eff ) Comment
29+ foreign import createProcessingInstruction :: forall eff . String -> String -> Document -> Eff (dom :: DOM | eff ) ProcessingInstruction
3030
3131foreign import importNode :: forall eff . Node -> Boolean -> Document -> Eff (dom :: DOM | eff ) Node
3232foreign import adoptNode :: forall eff . Node -> Document -> Eff (dom :: DOM | eff ) Node
You can’t perform that action at this time.
0 commit comments