All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.darvld.wireframe.WireframeCompilerPlugin.kt Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
package io.github.darvld.wireframe

import graphql.schema.GraphQLNamedType

public interface WireframeCompilerPlugin {
    public fun processType(type: GraphQLNamedType, environment: ProcessingEnvironment)

    public fun beforeProcessing(environment: ProcessingEnvironment) {
        // Unit
    }

    public fun afterProcessing(environment: ProcessingEnvironment) {
        // Unit
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy